home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / src / abbrev_p.h next >
C/C++ Source or Header  |  1993-10-05  |  939b  |  22 lines

  1. #ifndef __ABBREV_P_H__
  2. #define __ABBREV_P_H__
  3.  
  4. extern _VOID_ syms_of_abbrev _P_((void));
  5.  
  6. DEFUN_P(Fmake_abbrev_table, (void));
  7. DEFUN_P(Fclear_abbrev_table, (Lisp_Object table));
  8. DEFUN_P(Fdefine_abbrev, (Lisp_Object table, Lisp_Object name,
  9.                            Lisp_Object expansion, Lisp_Object hook,
  10.                            Lisp_Object count));
  11. DEFUN_P(Fdefine_global_abbrev, (Lisp_Object name, Lisp_Object expansion));
  12. DEFUN_P(Fdefine_mode_abbrev, (Lisp_Object name, Lisp_Object expansion));
  13. DEFUN_P(Fabbrev_symbol, (Lisp_Object abbrev, Lisp_Object table));
  14. DEFUN_P(Fabbrev_expansion, (Lisp_Object abbrev, Lisp_Object table));
  15. DEFUN_P(Fexpand_abbrev, (void));
  16. DEFUN_P(Funexpand_abbrev, (void));
  17. DEFUN_P(Finsert_abbrev_table_description, (Lisp_Object name,
  18.                                              Lisp_Object readable));
  19. DEFUN_P(Fdefine_abbrev_table, (Lisp_Object tabname, Lisp_Object defns));
  20.  
  21. #endif
  22.